-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Warning: sprintf() [function.sprintf]: Too few arguments in /home/inrunitc/public_html/chek/chek.php on line 132
Query was empty
I am new to PHP and mysql and I have like 88 fields in my form - what should I do ?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi there!
Does anyone know a 100% clone of the C/C++ printf for Delphi?
Yes, I know the System.Format function, but it handles things a little different.
For example if you want to format 3 to "003" you need "%03d" in C, but "%.3d" in Delphi.
I have an application written in Delphi which has to…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am developing a firewall for Linux as my project. I am able to capture packets and to block them. I am using IPTABLES.
How can I use variables with sprintf instead of hardcoded values?
sprintf(comm, "iptables -A INPUT -s $str -j DROP")
// inplace of:
sprintf(comm, "iptables -A INPUT -s 192.168…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hey everybody,
Thank you all before I start.
I am facing a serious issue with sprintf.
suppose my code snippet is :
sprintf(Buffer,"Hello World");
sprintf(Buffer,"Good Morning");
sprintf(Buffer,"Good Afternoon");
.
.
.
Some hundred sprints....
If i do like this, its getting overwritten.
How…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Is it possible to change the order of parameters to sprintf fun?
like sprintf(" this is %arg[2] test %arg[1]" , arg1, arg2)
i need to dynamically change the order of the arguments. so is that possible with sprintf?
>>> More